home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 18 / CU Amiga Magazine's Super CD-ROM 18 (1997)(EMAP Images)(GB)[!][issue 1998-01].iso / CUCD / Utilities / WinSound / Install < prev    next >
Encoding:
Text File  |  1997-11-10  |  2.3 KB  |  80 lines

  1. ;
  2. ;
  3. ;
  4. ; This script is Copyright ©1997 by Mark Wilson (tecno on ircnet #Amiga)
  5. ;
  6. ; v1.0 Initial Creation (Mark)
  7. ; v1.1 Added winsound.prefs copying (Deryk)
  8. ; v1.2 Corrected typo in the script regarding the .readme file (Deryk)
  9. ; v1.3 Added copying support for textfield.gadget (Deryk)
  10. ; v1.4 Removed textfield.gadget support as GadTools doesn't require it. (Deryk)
  11. ;
  12.  
  13.         (welcome "Welcome to the WinSound Installation.")
  14.  
  15.         (message "\n This is the Installer for\n"
  16.                  "\n WinSound v1.4\n"
  17.                  "Copyright 1997 Deryk Robosson\n"
  18.                  "\n"
  19.                  "\n"
  20.                  "\n"
  21.                  "\Preparing to begin installation.\n")
  22.         
  23.         (copyfiles
  24.             (Prompt "Copying WinSound to your WBStartup: directory.")
  25.             (help @copyfiles-help)
  26.             (source "WinSound")
  27.             (dest   "SYS:Wbstartup/")
  28.             (files)
  29.             (infos)   
  30.             (confirm)   
  31.         )       
  32.  
  33.         (copyfiles
  34.             (Prompt "Copying sample WinSound.prefs to env:.")
  35.             (help @copyfiles-help)
  36.             (source "WinSound.prefs")
  37.             (dest "env:")
  38.             (files)
  39.             (infos)
  40.             (confirm)
  41.         )
  42.  
  43.         (copyfiles
  44.             (Prompt "Copying sample WinSound.prefs to envarc:.")
  45.             (help @copyfiles-help)
  46.             (source "WinSound.prefs")
  47.             (dest "envarc:")
  48.             (files)
  49.             (infos)
  50.             (confirm)
  51.         )
  52.  
  53.         (copyfiles
  54.             (Prompt "Copying WinSoundPrefs to your Prefs directory.")
  55.             (help @copyfiles-help)
  56.             (source "WinSoundPrefs")
  57.             (dest   "SYS:Prefs/")
  58.             (files)
  59.             (infos)   
  60.             (confirm)
  61.         )
  62.  
  63.         (copyfiles
  64.             (Prompt "Copying WinSound.guide to your Help: directory.")
  65.             (help @copyfiles-help)
  66.             (source "WinSound.guide")
  67.             (dest   "HELP:")
  68.             (files)
  69.             (infos)   
  70.             (confirm) 
  71.         )
  72.  
  73.         (message "\nThe programs installed by this script"
  74.                "\nare the Property of Deryk B. Robosson"
  75.                "\nand are Copyright 1997."
  76.                "\n \n"
  77.                "\ Please Read the Documentation.\n"
  78.                "\ Thank you.\n")
  79.         (exit (quiet))
  80.